home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / e.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  132 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19. float e_data[][2] = {
  20.     {1.095436, 6.190871},
  21.     {2.107884, 6.970954},
  22.     {2.556017, 7.020747},
  23.     {3.020747, 7.867220},
  24.     {3.518672, 8.033195},
  25.     {3.269710, 8.531120},
  26.     {4.165975, 8.929461},
  27.     {3.302905, 9.062241},
  28.     {4.331950, 9.626556},
  29.     {3.286307, 9.344398},
  30.     {4.116183, 9.958507},
  31.     {3.004149, 9.510373},
  32.     {3.518672, 9.991701},
  33.     {2.705394, 9.493776},
  34.     {2.091286, 9.311203},
  35.     {2.041494, 9.062241},
  36.     {1.178423, 8.514523},
  37.     {1.443983, 8.165976},
  38.     {0.481328, 7.535270},
  39.     {1.045643, 6.904564},
  40.     {0.149378, 6.091286},
  41.     {1.095436, 5.410789},
  42.     {0.464730, 4.232365},
  43.     {1.377593, 4.497925},
  44.     {1.261411, 3.136930},
  45.     {1.925311, 3.950207},
  46.     {2.240664, 3.037344},
  47.     {2.589212, 3.834025},
  48.     {3.087137, 3.269710},
  49.     {3.236515, 3.867220},
  50.     {3.684647, 3.867220},
  51.     {3.867220, 4.448133},
  52.     {4.398340, 5.128631},
  53.  
  54. };
  55.  
  56. draw_e() {
  57.  
  58.     bgntmesh();
  59.     v2f(e_data[0]);
  60.     v2f(e_data[1]);
  61.     v2f(e_data[2]);
  62.     v2f(e_data[3]);
  63.     v2f(e_data[4]);
  64.     v2f(e_data[5]);
  65.     v2f(e_data[6]);
  66.     v2f(e_data[7]);
  67.     v2f(e_data[8]);
  68.     v2f(e_data[9]);
  69.     v2f(e_data[10]);
  70.     v2f(e_data[11]);
  71.     v2f(e_data[12]);
  72.     v2f(e_data[13]);
  73.     v2f(e_data[14]);
  74.     v2f(e_data[15]);
  75.     v2f(e_data[16]);
  76.     v2f(e_data[17]);
  77.     v2f(e_data[18]);
  78.     v2f(e_data[19]);
  79.     v2f(e_data[20]);
  80.     v2f(e_data[21]);
  81.     v2f(e_data[22]);
  82.     v2f(e_data[23]);
  83.     v2f(e_data[24]);
  84.     v2f(e_data[25]);
  85.     v2f(e_data[26]);
  86.     v2f(e_data[27]);
  87.     v2f(e_data[28]);
  88.     v2f(e_data[29]);
  89.     v2f(e_data[30]);
  90.     v2f(e_data[31]);
  91.     v2f(e_data[32]);
  92.     endtmesh();
  93.  
  94.     bgnline();
  95.     v2f(e_data[0]);
  96.     v2f(e_data[2]);
  97.     v2f(e_data[4]);
  98.     v2f(e_data[6]);
  99.     v2f(e_data[8]);
  100.     v2f(e_data[10]);
  101.     v2f(e_data[12]);
  102.     v2f(e_data[14]);
  103.     v2f(e_data[16]);
  104.     v2f(e_data[18]);
  105.     v2f(e_data[20]);
  106.     v2f(e_data[22]);
  107.     v2f(e_data[24]);
  108.     v2f(e_data[26]);
  109.     v2f(e_data[28]);
  110.     v2f(e_data[30]);
  111.     v2f(e_data[32]);
  112.     v2f(e_data[31]);
  113.     v2f(e_data[29]);
  114.     v2f(e_data[27]);
  115.     v2f(e_data[25]);
  116.     v2f(e_data[23]);
  117.     v2f(e_data[21]);
  118.     v2f(e_data[19]);
  119.     v2f(e_data[17]);
  120.     v2f(e_data[15]);
  121.     v2f(e_data[13]);
  122.     v2f(e_data[11]);
  123.     v2f(e_data[9]);
  124.     v2f(e_data[7]);
  125.     v2f(e_data[5]);
  126.     v2f(e_data[3]);
  127.     v2f(e_data[1]);
  128.     endline();
  129.  
  130. }
  131.  
  132.